home *** CD-ROM | disk | FTP | other *** search
Text File | 1988-08-31 | 856 b | 48 lines | [CTPP/CTMP] |
- % Background Text
-
-
- %--------------Variables and Procedures
- /TM 1000 def %Top Margin
- /BM -600 def %Bottom
- /LM 0 def %Left margin for bold type
- /SLM -450 def %Left margin for shadow type
- /RM 612 def %Right margin for bold type
- /SRM 1000 def %Right margin for shadow type
-
-
- /newline
- {currentpoint Size1 sub %This sets line spacing.n was 16
- exch pop LM
- exch moveto } def
-
- /nllfNec
- { currentpoint pop SRM gt %beyond SRM?
- {newline} if } def %yes:next line
-
- /done? %stack:---bool.
- { currentpoint exch pop %Below BM?
- BM lt} def
-
- /fillpage %stack:str
- { /strg exch def
- { {pop pop nllfNec} strg kshow
- done? {exit} if
- } loop
- } def
-
- %---------------Begin Program-------
- gsave
- 0 0 translate
- Angle rotate
-
-
-
- Fontname1 findfont Size1 scalefont setfont % was 12
- LM TM moveto
- Color1 setgray
- Background fillpage
-
- grestore
- showpage
-
-